home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / a_utils / yacc / flexyacc / aflex.lha / aflex / src / file_managerS.a < prev    next >
Text File  |  1991-05-16  |  2KB  |  35 lines

  1. -- Copyright (c) 1990 Regents of the University of California.
  2. -- All rights reserved.
  3. --
  4. -- This software was developed by John Self of the Arcadia project
  5. -- at the University of California, Irvine.
  6. --
  7. -- Redistribution and use in source and binary forms are permitted
  8. -- provided that the above copyright notice and this paragraph are
  9. -- duplicated in all such forms and that any documentation,
  10. -- advertising materials, and other materials related to such
  11. -- distribution and use acknowledge that the software was developed
  12. -- by the University of California, Irvine.  The name of the
  13. -- University may not be used to endorse or promote products derived
  14. -- from this software without specific prior written permission.
  15. -- THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  16. -- IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  17. -- WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  18.  
  19. -- TITLE external_file_manager
  20. -- AUTHOR: John Self (UCI)
  21. -- DESCRIPTION opens external files for other functions
  22. -- NOTES This package opens external files, and thus may be system dependent
  23. --       because of limitations on file names.
  24. --       This version is for the VADS 5.5 Ada development system.
  25. -- $Header: /co/ua/self/arcadia/aflex/ada/src/RCS/file_managerS.a,v 1.4 90/01/12 15:20:00 self Exp Locker: self $ 
  26.  
  27. with TEXT_IO; use TEXT_IO; 
  28. package EXTERNAL_FILE_MANAGER is 
  29.   procedure GET_IO_FILE(F : in out FILE_TYPE); 
  30.   procedure GET_DFA_FILE(F : in out FILE_TYPE); 
  31.   procedure GET_SCANNER_FILE(F : in out FILE_TYPE); 
  32.   procedure GET_BACKTRACK_FILE(F : in out FILE_TYPE); 
  33.   procedure INITIALIZE_FILES; 
  34. end EXTERNAL_FILE_MANAGER; 
  35.